home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / cool / cool.lha / ice / pisces / mkdepend / Imakefile < prev    next >
Encoding:
Makefile  |  1991-09-04  |  1.2 KB  |  46 lines

  1. /*****************************************************************************
  2. //
  3. // Copyright (C) 1991 Texas Instruments Incorporated.
  4. //
  5. // Permission is granted to any individual or institution to use, copy, modify,
  6. // and distribute this software, provided that this complete copyright and
  7. // permission notice is maintained, intact, in all copies and supporting
  8. // documentation.
  9. //
  10. // Texas Instruments Incorporated provides this software "as is" without
  11. // express or implied warranty.
  12. //
  13.  *****************************************************************************
  14.  *
  15.  *    Author: Martin Neath
  16.  *    Filename: Imakefile
  17.  *    Module: pisces/mkdepend
  18.  *    Purpose: Imake file for mkdepend
  19.  *    Creation Date: 05/11/90
  20.  *
  21.  *****************************************************************************/
  22.  
  23. LINKDEP =
  24. ALLCPLUSDEFS = 
  25.  
  26. HDRS = def.h
  27.  
  28. SRCS = include.$(C) main.$(C) parse.$(C) pr.$(C) cppsetup.$(C) \
  29.     eval.$(C)
  30.  
  31. OBJS = include.$(OBJ) main.$(OBJ) parse.$(OBJ) pr.$(OBJ) cppsetup.$(OBJ) \
  32.     eval.$(OBJ)
  33.  
  34. #if !HasVoidSignalReturn
  35. SIGPROCDEF = $(DFLAG)SIGNALRETURNSINT
  36. #else
  37. SIGPROCDEF =
  38. #endif
  39.  
  40. LOCAL_C_DEFS = $(SIGPROCDEF) $(MISC_CFLAGS)
  41.  
  42. All(mkdepend)
  43. OptimizeCObject()
  44. CProgram(mkdepend)
  45.  
  46.